home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 13-02.BAS < prev    next >
BASIC Source File  |  1991-06-07  |  451b  |  28 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. IF FGtestmode(9,0) = 0 THEN
  6.    PRINT "This program requires a PCjr or ";
  7.    PRINT "a Tandy 1000 system."
  8.    STOP
  9. END IF
  10.  
  11. PRINT "2048 Hz periodic noise..."
  12. FGvoice 4, 2, 15, 3
  13. FGwaitfor 18
  14.  
  15. PRINT "2048 Hz white noise..."
  16. FGvoice 5, 2, 15, 3
  17. FGwaitfor 18
  18.  
  19. PRINT "500 Hz tone of increasing volume..."
  20. FOR Volume = 1 TO 15
  21.    FGvoice 1, 500, Volume, 0
  22.    FGwaitfor 4
  23. NEXT
  24.  
  25. FGquiet
  26.  
  27. END
  28.